.titulo-ad{
    padding: 80px 0 40px 0;
	color: #121212;
	font-size: 35px;
	text-align: center;
	margin-bottom: 5px;
	font-family: Segoe UI Black;
}

main .sobre-nosotros{
    padding: 80px 0 60px 0;
}

.contenedor-sobre-nosotros{
    padding: 0px 150px 0px 150px;
    display: flex;
    justify-content: space-evenly;
}

.imagen-about-us{
    width: 48%;
}

.sobre-nosotros .contenido-textos{
    width: 48%;
}

.contenido-textos h4{
    margin-bottom: 15px;
}

.contenido-textos h4 span{
    background: #4d0686;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    padding: 2px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5);
    margin-right: 5px;
    margin-left: 10px;
    margin-top: 1px;
}

.contenido-textos p{
    padding: 0px 0px 20px 15px;
    font-weight: 300;
    text-align: justify;
}

.conjun{
    padding: 15px 100px 10px 70px;
}

.uno{
    float: right;
}

.btn-outline{
    text-decoration: none;
    font-size: 18px;
    color: rgb(118,109, 244);
    padding: 10px 30px;
    border: 2px solid rgb(118,109, 244);
    position: relative;
    transition: .5s;
}

.btn-outline::before,
.btn-outline::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: inherit;
    transition: .5s;
}

.btn-outline::before {
    top: -10px;
    left: -10px;
    border-width: 2px 0 0 2px;
}

.btn-outline::after {
    bottom: -10px;
    right: -10px;
    border-width: 0 2px 2px 0;
}

.btn-outline:hover::before,
.btn-outline:hover::after {
    width: calc(100% + 18px);
    height: calc(100% + 18px);
}

@media screen and (max-width:1310px){

    .contenedor-sobre-nosotros{
        padding: 0px 0px 0px 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sobre-nosotros .contenido-textos{
        width: 90%;
    }

    .imagen-about-us{
        width: 90%;
    }
}

@media screen and (max-width:500px){
    .imagen-about-us{
        margin-bottom: 60px;
        width: 99%;
    }

    .sobre-nosotros .contenido-textos{
        width: 95%;
    }
}

@media screen and (max-width:900px){
    .conjun{
        padding: 15px 70px 10px 70px;
    }
}